home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1994 November / Cd Ware (Nro. 2) - Epimundo.iso / DOS / CM / HIDEUSER.ZIP / HIDEUSER.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1994-04-07  |  1.7 KB  |  95 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING002
  20.     String   STRING003
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     GetUser
  25.     If (Psa(1) == 1) Goto LABEL001
  26.     End
  27.     :LABEL001
  28.     Cls
  29.     PrintLn "@X07You can now enter an @X0FALIAS@X07. This `alias' will go into effect when"
  30.     PrintLn "@X0F    @X07you enter an area that allows them. When you leave that area,"
  31.     PrintLn "@X0F    @X07your `real' name is restored."
  32.     PrintLn "You are probably already using a handle to call here. This `alias'"
  33.     PrintLn "    is, in effect, a @X0FSECOND @X07handle."
  34.     PrintLn ""
  35.     PrintLn "You do @X0FNOT @X07have to choose an alias if you don't want one."
  36.     PrintLn "You can only chose @X0FONE @X07Alias. That alias is active in @X0FALL @X07alias bases."
  37.     PrintLn ""
  38.     PrintLn "Currently, the only base you can use an alias in is the @X0FFLAMING @X07base."
  39.     PrintLn "    You may not wish others to `know' who you are in that base."
  40.     PrintLn ""
  41.     PrintLn "Your @X0DCURRENT@X07 Alias is @X0D", U_Alias
  42.     PrintLn ""
  43.     InputStr "Would you like to choose or change your alias (Y/N)", STRING003, 12, 1, "YN", 8
  44.     If (STRING003 == "N") End
  45.     PrintLn ""
  46.     Input "@X0FALIAS @X07name (Enter=@X0FCURRENT @X07name) ", STRING002
  47.     U_Alias = STRING002
  48.     PutUser
  49.     End
  50.  
  51. ;------------------------------------------------------------------------------
  52. ;
  53. ; Usage report (before postprocessing)
  54. ;
  55. ; ■ Statements used :
  56. ;
  57. ;    3       End
  58. ;    1       Cls
  59. ;    1       Goto 
  60. ;    1       Let 
  61. ;    15      PrintLn 
  62. ;    2       If 
  63. ;    1       Input 
  64. ;    1       GetUser
  65. ;    1       PutUser
  66. ;    1       InputStr 
  67. ;
  68. ;
  69. ; ■ Functions used :
  70. ;
  71. ;    2       ==
  72. ;    1       Psa()
  73. ;
  74. ;------------------------------------------------------------------------------
  75. ;
  76. ; Analysis flags : W
  77. ;
  78. ; W - Write user ■ 5
  79. ;     Program writes a user record. Although this may be normal for a
  80. ;     User Editor, it may also be a way to modify an account level.
  81. ;     ■ Search for : PUTUSER
  82. ;
  83. ;------------------------------------------------------------------------------
  84. ;
  85. ; Postprocessing report
  86. ;
  87. ;    0       For/Next
  88. ;    0       While/EndWhile
  89. ;    0       If/Then or If/Then/Else
  90. ;    0       Select Case
  91. ;
  92. ;------------------------------------------------------------------------------
  93. ;                 AEGiS Corp - Break the routines, code against the machines!
  94. ;------------------------------------------------------------------------------
  95.